home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / syslinux / com32 / include / stddef.h < prev    next >
C/C++ Source or Header  |  2005-10-29  |  305b  |  25 lines

  1. /*
  2.  * stddef.h
  3.  */
  4.  
  5. #ifndef _STDDEF_H
  6. #define _STDDEF_H
  7.  
  8. #ifndef __KLIBC__
  9. # define __KLIBC__ 1
  10. #endif
  11.  
  12. #include <bitsize/stddef.h>
  13.  
  14. #undef NULL
  15. #ifdef __cplusplus
  16. # define NULL 0
  17. #else
  18. # define NULL ((void *)0)
  19. #endif
  20.  
  21. #undef offsetof
  22. #define offsetof(t,m) ((size_t)&((t *)0)->m)
  23.  
  24. #endif /* _STDDEF_H */
  25.